Skip to content

Commit

Permalink
✂️ fix schema
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Sep 29, 2023
1 parent 63aa5c8 commit 4f630cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codeinterpreterapi/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Optional

from dotenv import load_dotenv
from langchain.pydantic_v1 import BaseSettings
from langchain.pydantic_v1 import BaseSettings, SecretStr
from langchain.schema import SystemMessage

from codeinterpreterapi.prompts import code_interpreter_system_message
Expand All @@ -23,7 +23,7 @@ class CodeInterpreterAPISettings(BaseSettings):
AZURE_API_BASE: Optional[str] = None
AZURE_API_VERSION: Optional[str] = None
AZURE_DEPLOYMENT_NAME: Optional[str] = None
ANTHROPIC_API_KEY: Optional[str] = None
ANTHROPIC_API_KEY: Optional[SecretStr] = None

# LLM Settings
MODEL: str = "gpt-3.5-turbo"
Expand Down

0 comments on commit 4f630cd

Please sign in to comment.