Skip to content

Commit

Permalink
reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
satawatnack committed Mar 7, 2024
1 parent 85b8d81 commit f638d7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions adapter/verifiable_ai/mistral.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@
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


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

Expand Down
8 changes: 4 additions & 4 deletions adapter/verifiable_ai/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit f638d7a

Please sign in to comment.