diff --git a/adapter/verifiable_ai/mistral.py b/adapter/verifiable_ai/mistral.py index 43f2d7d..d24c235 100644 --- a/adapter/verifiable_ai/mistral.py +++ b/adapter/verifiable_ai/mistral.py @@ -8,10 +8,10 @@ class Request(TypedDict): model: str messages: str - max_tokens: int - stream: bool temperature: float top_p: float + max_tokens: int + stream: bool safe_prompt: bool random_seed: int @@ -19,10 +19,10 @@ class Request(TypedDict): class Input(TypedDict): model: str messages: str - max_tokens: int - stream: bool temperature: float top_p: float + max_tokens: int + stream: bool safe_prompt: bool random_seed: int diff --git a/adapter/verifiable_ai/openai.py b/adapter/verifiable_ai/openai.py index dd1d083..202d4dc 100644 --- a/adapter/verifiable_ai/openai.py +++ b/adapter/verifiable_ai/openai.py @@ -8,20 +8,20 @@ class Request(TypedDict): model: str messages: str - max_tokens: int - stream: bool temperature: float top_p: float + max_tokens: int + stream: bool seed: int class Input(TypedDict): model: str messages: str - max_tokens: int - stream: bool temperature: float top_p: float + max_tokens: int + stream: bool seed: int