Skip to content

Commit ea3fe69

Browse files
committed
Updated repo structure
1 parent c04de2f commit ea3fe69

File tree

220 files changed

+4
-516
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

220 files changed

+4
-516
lines changed

ai_agent_tutorials/ai_legal_agent_team/legal_agent_team.py renamed to advanced_ai_agents/multi_agent_apps/agent_teams/ai_legal_agent_team/legal_agent_team.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def main():
173173
legal_researcher = Agent(
174174
name="Legal Researcher",
175175
role="Legal research specialist",
176-
model=OpenAIChat(id="gpt-4o"),
176+
model=OpenAIChat(id="gpt-4.1"),
177177
tools=[DuckDuckGoTools()],
178178
knowledge=st.session_state.knowledge_base,
179179
search_knowledge=True,
@@ -190,7 +190,7 @@ def main():
190190
contract_analyst = Agent(
191191
name="Contract Analyst",
192192
role="Contract analysis specialist",
193-
model=OpenAIChat(id="gpt-4o"),
193+
model=OpenAIChat(id="gpt-4.1"),
194194
knowledge=st.session_state.knowledge_base,
195195
search_knowledge=True,
196196
instructions=[
@@ -204,7 +204,7 @@ def main():
204204
legal_strategist = Agent(
205205
name="Legal Strategist",
206206
role="Legal strategy specialist",
207-
model=OpenAIChat(id="gpt-4o"),
207+
model=OpenAIChat(id="gpt-4.1"),
208208
knowledge=st.session_state.knowledge_base,
209209
search_knowledge=True,
210210
instructions=[
@@ -219,7 +219,7 @@ def main():
219219
st.session_state.legal_team = Agent(
220220
name="Legal Team Lead",
221221
role="Legal team coordinator",
222-
model=OpenAIChat(id="gpt-4o"),
222+
model=OpenAIChat(id="gpt-4.1"),
223223
team=[legal_researcher, contract_analyst, legal_strategist],
224224
knowledge=st.session_state.knowledge_base,
225225
search_knowledge=True,

advanced_tools_frameworks/gemini_multimodal_chatbot/README.md

-29
This file was deleted.

advanced_tools_frameworks/gemini_multimodal_chatbot/gemini_multimodal_chatbot.py

-67
This file was deleted.

advanced_tools_frameworks/gemini_multimodal_chatbot/requirements.txt

-3
This file was deleted.

advanced_tools_frameworks/local_llama3.1_tool_use/README.md

-46
This file was deleted.

advanced_tools_frameworks/local_llama3.1_tool_use/llama3_tool_use.py

-102
This file was deleted.

advanced_tools_frameworks/local_llama3.1_tool_use/requirements.txt

-3
This file was deleted.

advanced_tools_frameworks/multillm_chat_playground/multillm_playground.py

-84
This file was deleted.

advanced_tools_frameworks/multillm_chat_playground/requirements.txt

-2
This file was deleted.

0 commit comments

Comments
 (0)