Quentin McCain
Quentin McCain
I cant seem to figure out how to render a sprite using a sprite sheet when creating entities What I have tried ``` var x = world.createEntity({ name: 'player' +...
Updated API,will you be integrating the updated API (unknown 6) into your code
I am attempting to build a chatbot using TrtLlmAPI as the llm ``` llm = TrtLlmAPI( model_path=trt_engine_path, engine_name=trt_engine_name, tokenizer_dir=tokenizer_dir_path, temperature=0.1, max_new_tokens=1024, context_window=1024 * 4, messages_to_prompt=messages_to_prompt, completion_to_prompt=completion_to_prompt, verbose=False, ) ... documents...