What is the best way to have doc information in the toon format? #173
-
|
I am currently trying to build an agent that is going to use my school's docs to keep up to date on info. What is the best way I can convey the information that is currently in markdown and uses github's formatting to display the information into TOON? Currently I have for example: Condo Department-level Contributor HighlightHere is a table of departments that have contributed nodes to the Pinnacles cluster, contributing to its growth and computing power.
And I have it converted to: Is this good enough? I had this generated by ChatGPT using the prompt that TOON has on the readme. I think its good. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
What you have is "valid but lossy": collapsing the whole table into one If your agent only needs to talk about contributors, it's OK. If it needs to filter ("what’s the queue for Physics?"), encode the table as a separate TOON array. I'd keep the table as structure, not just prose. For example: Now your agent can query by department/queue directly. |
Beta Was this translation helpful? Give feedback.
What you have is "valid but lossy": collapsing the whole table into one
contentstring is fine for summarization, but you lose the dept→queue mapping.If your agent only needs to talk about contributors, it's OK. If it needs to filter ("what’s the queue for Physics?"), encode the table as a separate TOON array.
I'd keep the table as structure, not just prose. For example: