Skip to content

Commit

Permalink
chore(versioning): versioning and linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 5, 2024
1 parent 4bc134e commit 0c9df12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vortex/flows/resources/completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class OpenAIResource(ConfigurableResource):
api_key: Optional[str] = (
None or EnvVar("TOGETHER_API_KEY") or EnvVar("OPENAI_API_KEY")
)
base_url: Optional[str] = EnvVar("TOGETHER_API_BASE_URL") or EnvVar("OPENAI_API_BASE_URL")
base_url: Optional[str] = EnvVar("TOGETHER_API_BASE_URL") or EnvVar(
"OPENAI_API_BASE_URL"
)
# client: Optional[OpenAI] = None
model: Optional[str] = (
EnvVar("TOGETHERAI_MODEL_NAME") or "mistralai/Mixtral-8x7B-Instruct-v0.1"
Expand Down

0 comments on commit 0c9df12

Please sign in to comment.