31 lines
553 B
Python
31 lines
553 B
Python
import marimo
|
|
|
|
__generated_with = "0.18.0"
|
|
app = marimo.App(width="medium")
|
|
|
|
|
|
@app.cell
|
|
def _():
|
|
import marimo as mo
|
|
from utils import connect_qumo_ollama
|
|
|
|
# VM_NAME = 'hiperf-gpu'
|
|
VM_NAME = 'ollama-lite'
|
|
|
|
client = connect_qumo_ollama(VM_NAME)
|
|
return (mo,)
|
|
|
|
|
|
@app.cell(hide_code=True)
|
|
def _(mo):
|
|
mo.md(r"""
|
|
# Examples:
|
|
|
|
[Quick and Easy: Sentiment Analysis with LLM](https://medium.com/@beam_villa/quick-and-easy-sentiment-analysis-with-llm-c61c562d059c)
|
|
""")
|
|
return
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|