Guang Yang

Results 4 comments of Guang Yang

@akshay-ap thanks for the PR man saved me a lotta time debugging

have yall checked your `nvidia-smi` to make sure the GPU is actually running? in my experience it will default to `tensorflow` instead of `tensorflow-gpu` unless i uninstall `tensorflow` and reinstall...

@amaarora if ur running llama on groq, this worked for me ``` groq_client = Groq(api_key=os.environ.get("GROQ_API_KEY")) client = instructor.from_groq(groq_client, mode=instructor.Mode.JSON) chat_completion = client.chat.completions.create( messages=[ { "role": "system", "content":sys_prompt, }, { "role":...