feat: add new examples from pocketflow-academy

This commit is contained in:
Alan ALves
2025-03-19 10:31:04 -03:00
parent 84720ceebd
commit 557a14f695
129 changed files with 13455 additions and 0 deletions
@@ -0,0 +1,70 @@
from typing import Dict, List
from utils.call_llm import call_llm
def analyze_results(query: str, results: List[Dict]) -> Dict:
"""Analyze search results using LLM
Args:
query (str): Original search query
results (List[Dict]): Search results to analyze
Returns:
Dict: Analysis including summary and key points
"""
# Format results for prompt
formatted_results = []
for i, result in enumerate(results, 1):
formatted_results.append(f"""
Result {i}:
Title: {result['title']}
Snippet: {result['snippet']}
URL: {result['link']}
""")
prompt = f"""
Analyze these search results for the query: "{query}"
{'\n'.join(formatted_results)}
Please provide:
1. A concise summary of the findings (2-3 sentences)
2. Key points or facts (up to 5 bullet points)
3. Suggested follow-up queries (2-3)
Output in YAML format:
```yaml
summary: >
brief summary here
key_points:
- point 1
- point 2
follow_up_queries:
- query 1
- query 2
```
"""
try:
response = call_llm(prompt)
# Extract YAML between code fences
yaml_str = response.split("```yaml")[1].split("```")[0].strip()
import yaml
analysis = yaml.safe_load(yaml_str)
# Validate required fields
assert "summary" in analysis
assert "key_points" in analysis
assert "follow_up_queries" in analysis
assert isinstance(analysis["key_points"], list)
assert isinstance(analysis["follow_up_queries"], list)
return analysis
except Exception as e:
print(f"Error analyzing results: {str(e)}")
return {
"summary": "Error analyzing results",
"key_points": [],
"follow_up_queries": []
}
@@ -0,0 +1,57 @@
import os
from serpapi import GoogleSearch
from typing import Dict, List, Optional
class SearchTool:
"""Tool for performing web searches using SerpAPI"""
def __init__(self, api_key: Optional[str] = None):
"""Initialize search tool with API key
Args:
api_key (str, optional): SerpAPI key. Defaults to env var SERPAPI_API_KEY.
"""
self.api_key = api_key or os.getenv("SERPAPI_API_KEY")
if not self.api_key:
raise ValueError("SerpAPI key not found. Set SERPAPI_API_KEY env var.")
def search(self, query: str, num_results: int = 5) -> List[Dict]:
"""Perform Google search via SerpAPI
Args:
query (str): Search query
num_results (int, optional): Number of results to return. Defaults to 5.
Returns:
List[Dict]: Search results with title, snippet, and link
"""
# Configure search parameters
params = {
"engine": "google",
"q": query,
"api_key": self.api_key,
"num": num_results
}
try:
# Execute search
search = GoogleSearch(params)
results = search.get_dict()
# Extract organic results
if "organic_results" not in results:
return []
processed_results = []
for result in results["organic_results"][:num_results]:
processed_results.append({
"title": result.get("title", ""),
"snippet": result.get("snippet", ""),
"link": result.get("link", "")
})
return processed_results
except Exception as e:
print(f"Search error: {str(e)}")
return []