Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
pydantic
requests
GitPython
python-dotenv
pydantic-ai
aiofiles
rich
flask
ollama
pydantic==2.11.7
requests==2.32.4
GitPython==3.1.44
python-dotenv==1.1.1
pydantic-ai==0.3.7
aiofiles==24.1.0
rich==14.0.0
flask==3.1.1
ollama==0.5.1
2 changes: 1 addition & 1 deletion saist/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ async def _get_llm_adapter(args) -> BaseLlmAdapter:
if args.llm == 'anthropic':
llm = AnthropicAdapter( api_key = args.llm_api_key, model=model)
logger.debug(f"Using LLM: anthropic Model: {llm.model_name}")
if args.llm == 'bedrock':
elif args.llm == 'bedrock':
llm = BedrockAdapter( api_key = args.llm_api_key, model=model)
logger.debug(f"Using LLM: AWS bedrock Model: {llm.model_name}")
elif args.llm == 'deepseek':
Expand Down
Loading