Skip to content

Commit c8cc824

Browse files
committed
feat: improve agent prompt
1 parent 565820e commit c8cc824

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

CHALLENGE.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,6 @@ A good agent isn't just about a good prompt; it's about *measurably* good prompt
101101
For code templates and implementation details, refer to the official documentation:
102102

103103
👉 **[Vertex AI Gen AI Evaluation Service](https://cloud.google.com/vertex-ai/generative-ai/docs/models/evaluate-models)**
104-
👉 **[ADK Python Agent-to-Agent Basic Sample](https://github.com/google/adk-python/blob/main/contributing/samples/a2a_basic/README.md)**
105-
106-
107-
108104
-----
109105

110106

@@ -240,7 +236,7 @@ Build a creative workflow where agents **talk to each other**, **execute tools**
240236
For code templates and implementation details, refer to the official ADK Python Agents:
241237

242238
👉 **[Google ADK Python Agents Samples](https://github.com/google/adk-samples/tree/main/python/agents)**
243-
239+
👉 **[ADK Python Agent-to-Agent Basic Sample](https://github.com/google/adk-python/blob/main/contributing/samples/a2a_basic/README.md)**
244240

245241

246242
-----

src/agents/adk_agent.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
from google.adk.agents import Agent
1515
from src.agents.tools import search_knowledge_base
1616
from google.genai import types
17+
import os
1718

1819

1920
# TODO: HACKATHON CHALLENGE (Challenge 2, Part 1)
@@ -28,8 +29,6 @@
2829
You are a helpful assistant.
2930
"""
3031

31-
import os
32-
3332
app_name = os.getenv("APP_NAME", "GenAI-RAG").lower().replace(" ", "_").replace("-", "_")
3433

3534
# For a list of available models, see:

0 commit comments

Comments
 (0)