Coby
January 31, 2025, 1:07pm
7
@febryanvaldo089 it is on the roadmap but I do not have the release date . In the interim a community member had written a scraper to get that information.
I just made an Open WebUI plugin: SambaNova Function | Open WebUI Community
It leverages this neat trick:
def get_sambanova_models(self):
# Hey, wanna see something crazy?
# SambaNova offers no model listing API endpoint at the moment.
# However, we can scrape it from the documentation:
# https://community.sambanova.ai/t/supported-models/193
response = requests.get("https://community.sambanova.ai/t/supported-models/193")
response.raise_for_status()
sou…
-Coby
2 Likes