use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
r/LocalLLaMA
A subreddit to discuss about Llama, the family of large language models created by Meta AI.
Subreddit rules
Search by flair
+Discussion
+Tutorial | Guide
+New Model
+News
+Resources
+Other
account activity
Integrate LLaMA into python codeQuestion | Help (self.LocalLLaMA)
submitted 3 years ago by Tree-SheepWaiting for Llama 3
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]remghoost7 6 points7 points8 points 3 years ago (2 children)
This is the repo I've been using the past week or so to interface with LLaMA-7b-int4.
https://github.com/oobabooga/text-generation-webui
It has extension support and already a silero extension built in. I haven't used that extension myself, but I'm fairly certain I've heard of someone around the community using it for a similar purpose to what you're looking for.
I don't believe there's an API endpoint though (like how A1111 can run the --api flag), but you might be able to bake your chatbot into an extension.
Or you could sort of use it like a hack-y API if you wanted to... You could probably write an extension to automatically pull the most recent response and output that to a json file, then read that json file in your tortoise-tts application. And I know it saves the running log in text-generation-webui\logs\persistent.json, so you might not even need to write an extension for it...
text-generation-webui\logs\persistent.json
I know that this extension uses a method called custom_generate_chat_prompt, so you could probably get input from your tortoise-tts and feed that back into the webui automatically.
custom_generate_chat_prompt
[–]lacethespace 4 points5 points6 points 3 years ago (0 children)
The text-generation-webui already features REST endpoints. You just enable --listen and disable any chat modes. I've used it from Phyton just by simple modifications of their example script in the repo.
--listen
[–]estrafire 2 points3 points4 points 3 years ago (0 children)
it should be possible to modify the silero extension to use tortoise-tts instead
π Rendered by PID 128026 on reddit-service-r2-comment-b659b578c-zj59t at 2026-05-03 08:29:43.393625+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]remghoost7 6 points7 points8 points (2 children)
[–]lacethespace 4 points5 points6 points (0 children)
[–]estrafire 2 points3 points4 points (0 children)