solana-agent 1.4.3__tar.gz → 1.4.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 1.4.3
3
+ Version: 1.4.4
4
4
  Summary: Build self-learning AI Agents
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "1.4.3"
3
+ version = "1.4.4"
4
4
  description = "Build self-learning AI Agents"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
@@ -111,8 +111,8 @@ class AI:
111
111
  cohere_api_key: str = None,
112
112
  cohere_model: Literal["rerank-v3.5"] = "rerank-v3.5",
113
113
  gemini_api_key: str = None,
114
- code_interpreter: bool = True,
115
- file_search: bool = True,
114
+ code_interpreter: bool = False,
115
+ file_search: bool = False,
116
116
  openai_assistant_model: Literal["gpt-4o-mini",
117
117
  "gpt-4o"] = "gpt-4o-mini",
118
118
  openai_embedding_model: Literal[
@@ -134,8 +134,8 @@ class AI:
134
134
  cohere_api_key (str, optional): API key for Cohere search. Defaults to None
135
135
  cohere_model (Literal["rerank-v3.5"], optional): Cohere model for reranking. Defaults to "rerank-v3.5"
136
136
  gemini_api_key (str, optional): API key for Gemini search. Defaults to None
137
- code_interpreter (bool, optional): Enable code interpretation. Defaults to True
138
- file_search (bool, optional): Enable file search tool. Defaults to True
137
+ code_interpreter (bool, optional): Enable code interpretation. Defaults to False
138
+ file_search (bool, optional): Enable file search tool. Defaults to False
139
139
  openai_assistant_model (Literal["gpt-4o-mini", "gpt-4o"], optional): OpenAI model for assistant. Defaults to "gpt-4o-mini"
140
140
  openai_embedding_model (Literal["text-embedding-3-small", "text-embedding-3-large"], optional): OpenAI model for text embedding. Defaults to "text-embedding-3-large"
141
141
 
File without changes
File without changes