joeyDIGs
joeyDIGs
What worked for me was replacing ```python llm = AzureOpenAI( deployment_name="td2", model_name="text-davinci-002", ) ``` For ```python llm = AzureOpenAI( engine="td2", model_name="text-davinci-002", ) ```
# Update We've found that going back to pipy's `gpt-researcher v0.7.0` resolves this. Alternatively, commenting [this line](https://github.com/assafelovic/gpt-researcher/blob/2e017ad5050b518ba084cb4f9702d0f90551ca1a/gpt_researcher/master/agent.py#L97) similarly resolves. Can someone please look if this is an unintentional bug?
Hi @assafelovic, thank you for your attention to this issue! We're constructing a new instance of `GPTResearcher` and passing our pre-selected sources/urls to the __cto'r__, then calling `conduct_research()` without params....