Did hardware NVIDIA giant just signal that they are not getting into the language model race with Google and OpenAI? Try out their new A.I. chat on their website or here is the python code to try it.
from openai import OpenAI
client = OpenAI(
base_url = "https://integrate.api.nvidia.com/v1",
api_key = "$API_KEY_REQUIRED_IF_EXECUTING_OUTSIDE_NGC"
)
completion = client.chat.completions.create(
model="meta/llama3-70b-instruct",
messages=[{"role":"user","content":"Write a limerick about the wonders of GPU computing."}],
temperature=0.5,
top_p=1,
max_tokens=1024,
stream=True
)
for chunk in completion:
if chunk.choices[0].delta.content is not None:
print(chunk.choices[0].delta.content, end="")
Latest posts by Jalali Hartman (see all)
- Where does AI get it’s facts? - September 13, 2025
- Vibe coding with Claude and how to get your data out of Service Fusion - August 24, 2025
- Godfather of AI – Geoffrey Hinton – Warning of Danger of AI - August 6, 2025