Msingh openai image fix (#1648)

This commit is contained in:
Mandeep Singh 2025-01-27 13:39:59 -08:00 committed by GitHub
parent 8da727af99
commit 23edfac9cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 5 deletions

View File

@ -98,7 +98,7 @@
"\n", "\n",
"The overall orchestration is shown below:\n", "The overall orchestration is shown below:\n",
"\n", "\n",
"![Agentic Workflow Orchestration](./resources/images/AgenticWorkflow.png)" "![](../../images/oo_aa_image_1_code_interpreter_agents.png)"
] ]
}, },
{ {
@ -284,7 +284,8 @@
"source": [ "source": [
"#### UML Class Diagram for Core Classes\n", "#### UML Class Diagram for Core Classes\n",
"The following class diagram shows the relationship between the core classes. This UML (Unified Modeling Language) has been generated using [Mermaid](https://mermaid)\n", "The following class diagram shows the relationship between the core classes. This UML (Unified Modeling Language) has been generated using [Mermaid](https://mermaid)\n",
"![Class Diagram](./resources/diagrams/images/class_diagram_mermaid.png)" "\n",
"![](../../images/oo_aa_image_2_uml_diagram.png)"
] ]
}, },
{ {
@ -471,9 +472,9 @@
"\n", "\n",
"print(\"Setting up the agents... \")\n", "print(\"Setting up the agents... \")\n",
"\n", "\n",
"# Instantiate the agents\n", "# Instantiate the agents with the default constructor defined values\n",
"\n", "\n",
"# Developer can accept the default prompt, model, logger, and language model interface or accept the default values from the constructor\n", "# Developer override the default values - prompt, model, logger, and language model interface if needed\n",
"\n", "\n",
"file_ingestion_agent = FileAccessAgent()\n", "file_ingestion_agent = FileAccessAgent()\n",
"data_analysis_agent = PythonExecAgent()\n", "data_analysis_agent = PythonExecAgent()\n",
@ -482,7 +483,7 @@
"# Give a task to the file ingestion agent to read the file and provide the context to the data analysis agent \n", "# Give a task to the file ingestion agent to read the file and provide the context to the data analysis agent \n",
"file_ingestion_agent_output = file_ingestion_agent.task(prompt)\n", "file_ingestion_agent_output = file_ingestion_agent.task(prompt)\n",
"\n", "\n",
"# add the file content as context to the data analysis agent \n", "# Add the file content as context to the data analysis agent\n",
"# The context is added to the agent's tool manager so that the tool manager can use the context to generate the code \n", "# The context is added to the agent's tool manager so that the tool manager can use the context to generate the code \n",
"\n", "\n",
"data_analysis_agent.add_context(prompt)\n", "data_analysis_agent.add_context(prompt)\n",

View File

Before

Width:  |  Height:  |  Size: 200 KiB

After

Width:  |  Height:  |  Size: 200 KiB

View File

Before

Width:  |  Height:  |  Size: 409 KiB

After

Width:  |  Height:  |  Size: 409 KiB