Mohannad Alhanahnah
Mohannad Alhanahnah
@pchalasani I'll fix the linting issue if there are no concerns about the current implementation
> I don't want to bring in vbls specific to `AzureGPTConfig` subclass into `OpenAIGPTConfig` agreed, but we can make it as a tmp solution, till we figure out a better...
or we can move these variables to the `OpenAIGPTConfig` and remove them from `AzureGPTConfig `
is there a specific use case?
I can work on this issue if it's not assigned yet
for a variable [`use_functions_api`][langroid.agent.chat_agent.ChatAgentConfig]??
I tried to solve it inside pyproject.toml, but noticed it requires a post command after `poetry install`. Then decided to do the installation inside `__init__.py`
> I don't think we should include nltk download as part of langroid import. > > Since the nltk-not found issue came up in a specific example, maybe it's best...
There is a bug in the function ``` # Ensures the NLTK resource is available def download_nltk_resource(resource: str) -> None: try: nltk.data.find(resource) except LookupError: nltk.download(resource, quiet=True) ``` according to the...
ok, I did dig more into the issue, here is my observation: - after calling `download_nltk_resource`, the resources are downloaded, but in some circumstances, specifically for the resource `punkt`, the...