medram

Results 13 comments of medram

Me too, I need to use TCP and UDP at the same time, please any ideas? :D

Hello zauonlok, Thank you for your reply, I like this renderer project, and I have some C knowledge, so I may going to implement these ideas/algorithms and send you a...

I get the same problem once I've updated termux & termux-api, any solution please without downgrade ?

I've found the issue, the issue is I've used `model_name` instead of `model` ```diff -llm = ChatOpenAI(temerature=0, model_name="gpt-3.5-turbo") +llm = ChatOpenAI(temerature=0, model="gpt-3.5-turbo") ``` With `model_name` it resulted in `davinci` model...

Having the same issue, any solution without downgrading?

having the same issue, I need to see the final prompt too.

Guys, the option `exclude_unset=True` didn't work for me for some reason: ```python class ContractSchemaInput(ModelSchema): sender_id: int client_id: int type_id: int price_frequency: Literal["minute", "hourly", "daily", "weekly", "monthly"] care_type: Literal["​ambulante", "accommodation"] attachment_ids:...

Having the same issue, it's react-app-rewired that caused the issue, I still don't know how to fix it, Does anyone have an idea to fix this?

Finally, I've fixed it, in my case the issue is caused by an alias, I've removed it, and everything worked as intended: ```diff { "compilerOptions": { "paths": { "@components/*": ["./src/components/*"],...