Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

duckduckgosearchexception #948

Open
nyck33 opened this issue Mar 14, 2025 · 1 comment
Open

duckduckgosearchexception #948

nyck33 opened this issue Mar 14, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@nyck33
Copy link

nyck33 commented Mar 14, 2025

Describe the bug
DuckDuckGoSearchException is ?
To Reproduce
Steps to reproduce the behavior:
run this in jupyter:


"""
Example of Search Graph
"""

import os

from dotenv import load_dotenv

from scrapegraphai.graphs import SearchGraph

from china_unis import universities


import openai
from openai import OpenAI
import os
from dotenv import load_dotenv

# Load environment variables
load_dotenv()

# Initialize the OpenAI client
client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))

# List all available models
models = client.models.list()

# Print all models
print("Available OpenAI Models:")
for model in models:
    print(f"- {model.id}")

# Optionally, filter for specific model types
gpt_models = [model.id for model in models if "gpt" in model.id.lower()]
print("\nGPT Models:")
for model in gpt_models:
    print(f"- {model}")


os.environ.clear()


load_dotenv()

# ************************************************
# Define the configuration for the graph
# ************************************************

openai_key = os.getenv("OPENAI_API_KEY")

graph_config = {
    "llm": {
        "api_key": openai_key,
        "model": "openai/gpt-4o-2024-08-06",
    },
    "max_results": 2,
    "verbose": True,
}

prompt = f"""
Get me the contact email addresses of the following universities:
{universities}
"""

# ************************************************
# Create the SearchGraph instance and run it
# ************************************************

search_graph = SearchGraph(
    prompt=prompt, config=graph_config
)

result = search_graph.run()

print(result)



Expected behavior
be able to look up error on github issues or documentation.
Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

@dosubot dosubot bot added the bug Something isn't working label Mar 14, 2025
@VinciGit00
Copy link
Collaborator

give me the results please

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants