Nawaz

Results 6 comments of Nawaz

@WoosukKwon Any update when this will be available? I've tried it for Falcon-7B, the output doesn't seem right.

Thanks @zhuohan123. I've tried #592 for falcon-7b-instruct and its working well.

you're most probably getting the error while calculating face_encodings - I had the same issue, it got resolved after I removed extra information from my image (metadata). This library seems...

I found a workaround to skip the `llm_config = copy.deepcopy(llm_config)` line of code. ```python import httpx from autogen.oai.client import OpenAIWrapper from autogen import AssistantAgent, UserProxyAgent, config_list_from_json client = httpx.Client(verify=False, proxies=None)...

@ekzhu I'd love to submit a PR - do you think I should add a try/catch around `copy.deepcopy` and skip it if it fails or just skip the copy if...