Spaces:
Running
Running
Update app
Browse files
app.py
CHANGED
|
@@ -160,7 +160,7 @@ def Page():
|
|
| 160 |
title = "Knowledge Graph Generator"
|
| 161 |
with solara.Head():
|
| 162 |
solara.Title(f"{title}")
|
| 163 |
-
with solara.Column(style={"width": "
|
| 164 |
solara.Markdown(f"#{title}")
|
| 165 |
solara.Markdown("Enter some text and the language model will try to describe it as a knowledge graph. Done with :heart: by [alonsosilva](https://twitter.com/alonsosilva)")
|
| 166 |
user_message_count = len([m for m in messages.value if m["role"] == "user"])
|
|
|
|
| 160 |
title = "Knowledge Graph Generator"
|
| 161 |
with solara.Head():
|
| 162 |
solara.Title(f"{title}")
|
| 163 |
+
with solara.Column(style={"width": "100%", "padding": "50px"}):
|
| 164 |
solara.Markdown(f"#{title}")
|
| 165 |
solara.Markdown("Enter some text and the language model will try to describe it as a knowledge graph. Done with :heart: by [alonsosilva](https://twitter.com/alonsosilva)")
|
| 166 |
user_message_count = len([m for m in messages.value if m["role"] == "user"])
|