Add instruction
Browse files
app.py
CHANGED
@@ -282,6 +282,8 @@ with gr.Blocks(title="ChatTS Demo") as demo:
|
|
282 |
<a href="https://arxiv.org/abs/2412.03104"><img alt="preprint" src="https://img.shields.io/static/v1?label=arXiv&message=2412.03104&color=B31B1B&logo=arXiv"></a>
|
283 |
</div>""")
|
284 |
gr.Markdown("Try ChatTS with the default time series, or upload a CSV file (Example: [ts_example.csv](https://github.com/NetManAIOps/ChatTS/blob/main/demo/ts_example.csv)) containing UTS/MTS where each column is a dimension (no index column). All columns will be used as input of ChatTS automatically.")
|
|
|
|
|
285 |
|
286 |
# State to track whether to use default time series
|
287 |
use_default_state = gr.State(value=True)
|
|
|
282 |
<a href="https://arxiv.org/abs/2412.03104"><img alt="preprint" src="https://img.shields.io/static/v1?label=arXiv&message=2412.03104&color=B31B1B&logo=arXiv"></a>
|
283 |
</div>""")
|
284 |
gr.Markdown("Try ChatTS with the default time series, or upload a CSV file (Example: [ts_example.csv](https://github.com/NetManAIOps/ChatTS/blob/main/demo/ts_example.csv)) containing UTS/MTS where each column is a dimension (no index column). All columns will be used as input of ChatTS automatically.")
|
285 |
+
gr.Markdown("Suggested time series length: 256. The length should be between 64 and 1024, with 15 time series at most.")
|
286 |
+
gr.Markdown("Since ChatTS only supports English, please use English to ask questions. If you like ChatTS, kindly star our [GitHub repo](https://github.com/NetmanAIOps/ChatTS). If you find any issues, feel free to open an issue in the [GitHub Issues](https://github.com/NetManAIOps/ChatTS/issues).")
|
287 |
|
288 |
# State to track whether to use default time series
|
289 |
use_default_state = gr.State(value=True)
|