Burhanuddin Mustafa Lakdawala

Results 24 comments of Burhanuddin Mustafa Lakdawala

/remove-lifecycle stale /lifecycle frozen

I appreciate the offer, my id is: `pyrogenesii#0`

For reference, FastChat provides the `/token_check` endpoint: ### Example: #### Request body: ```json { "prompts": [ { "model": "llama3_large_cl", "prompt": "hello", "max_tokens": 0 } ] } ``` #### Response body:...

Sharing my nginx configuration to expose Ollama over the web with an API Key and HTTPS: ```nginx upstream ollama { server localhost:11434; } server { listen 8000 ssl; server_name ollama.mydomain.com;...

I have the same issue when using `df.to_markdown()` for a pandas DataFrame. Any pipe characters in the DataFrame values are not escaped, resulting in an invalid markdown table. Is there...

@jiaolongxue Since you seem to be familiar with it, could you make a pull request to add this functionality to the library?

@microsoft-github-policy-service agree company="Personable Inc."

Is this a good way to implement this? Another possible way I was thinking of was to have the exit reason propagate from the last agent. through the `send` /...

I see that [there is an implementation of adding Termination reason to the chat history for groupchat](https://github.com/microsoft/autogen/commit/bd3962cf2ae9303002bada46afec7234502f4a44) in the `experimental` branch. That seems like a better approach and would satisfy...