-
Notifications
You must be signed in to change notification settings - Fork 2
Epic ETP-2612: Add structured output in agents #523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
b68733d
Epic ETP-2612: Add structured output in agents
valenvivaldi 4431494
Epic ETP-2612: Add module field to knowledge base and tool configurat…
valenvivaldi 6d721c1
Epic ETP-2612: Add model configuration options for tools in Agent window
valenvivaldi 9439571
Epic ETP-2612: Update documentation for Task Creator Tool and bulk tasks
valenvivaldi dd4b154
Epic ETP-2612: Enhance OCR Tool documentation with advanced features
valenvivaldi af09cb0
Epic ETP-2612: Update documentation for image file handling in agents
valenvivaldi 6c1fadd
Epic ETP-2612: Apply suggestions from code review
valenvivaldi 2160b2a
Epic ETP-2612: Add Agent Memory Window documentation
valenvivaldi 58f3830
Epic ETP-2612: Update Agent Memory window image path in documentation
valenvivaldi 7f79a71
Epic ETP-2612: Add documentation for improving OCR recognition
valenvivaldi baf5c5d
Epic ETP-2612: Improve style
isaiasb-etendo 681c837
Epic ETP-2612: Pull request fixes
valenvivaldi 368ef3f
Epic ETP-2612: Update OCR Tool documentation
valenvivaldi 54b5f10
Epic ETP-2612: Remove image and move html
valenvivaldi 8f9d93a
Epic ETP-2612: Enhance OCR Tool documentation and clarify configuration
valenvivaldi dbde5bf
Epic ETP-2612: Update OCR Tool documentation
valenvivaldi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file added
BIN
+88.5 KB
.../etendo-copilot/how-to-guides/how-to-create-an-agent/agent-bastian-response.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+82.9 KB
...etendo-copilot/how-to-guides/how-to-create-an-agent/agent-json-schema-field.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
191 changes: 191 additions & 0 deletions
191
...de/etendo-copilot/how-to-guides/how-to-improve-ocr-recognition/ocr-reference-example.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,191 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <title>Invoice - #INV-001</title> | ||
| <style> | ||
| body { | ||
| font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | ||
| margin: 0; | ||
| padding: 20px; | ||
| color: #333; | ||
| } | ||
|
|
||
| .invoice-box { | ||
| max-width: 800px; | ||
| margin: auto; | ||
| padding: 30px; | ||
| border: 1px solid #eee; | ||
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); | ||
| font-size: 16px; | ||
| line-height: 24px; | ||
| } | ||
|
|
||
| .header { | ||
| display: flex; | ||
| justify-content: space-between; | ||
| margin-bottom: 40px; | ||
| } | ||
|
|
||
| .company-info h2 { | ||
| margin: 0; | ||
| color: #2c3e50; | ||
| } | ||
|
|
||
| .invoice-details { | ||
| text-align: right; | ||
| } | ||
|
|
||
| .details-container { | ||
| display: flex; | ||
| justify-content: space-between; | ||
| margin-bottom: 40px; | ||
| } | ||
|
|
||
| .bill-to h3 { | ||
| margin-bottom: 10px; | ||
| border-bottom: 2px solid #eee; | ||
| display: inline-block; | ||
| } | ||
|
|
||
| table { | ||
| width: 100%; | ||
| line-height: inherit; | ||
| text-align: left; | ||
| border-collapse: collapse; | ||
| } | ||
|
|
||
| table th { | ||
| background: #f8f9fa; | ||
| border-bottom: 1px solid #ddd; | ||
| padding: 10px; | ||
| } | ||
|
|
||
| table td { | ||
| padding: 10px; | ||
| vertical-align: top; | ||
| border-bottom: 1px solid #eee; | ||
| } | ||
|
|
||
| .total-section { | ||
| margin-top: 30px; | ||
| text-align: right; | ||
| } | ||
|
|
||
| .total-section table { | ||
| width: 250px; | ||
| margin-left: auto; | ||
| } | ||
|
|
||
| .total-section td { | ||
| border-bottom: none; | ||
| } | ||
|
|
||
| .total-row { | ||
| font-weight: bold; | ||
| font-size: 1.2em; | ||
| color: #2c3e50; | ||
| } | ||
|
|
||
| .footer { | ||
| margin-top: 50px; | ||
| text-align: center; | ||
| font-size: 12px; | ||
| color: #777; | ||
| } | ||
|
|
||
| @media print { | ||
| .invoice-box { | ||
| box-shadow: none; | ||
| border: none; | ||
| } | ||
| } | ||
| </style> | ||
| </head> | ||
| <body> | ||
|
|
||
| <div class="invoice-box"> | ||
| <div class="header"> | ||
| <div class="company-info"> | ||
| <h2>ACME SOLUTIONS LTD.</h2> | ||
| <p>123 Business Ave, Suite 100<br> | ||
| New York, NY 10001<br> | ||
| contact@acmesolutions.com</p> | ||
| </div> | ||
| <div class="invoice-details"> | ||
| <h1>INVOICE</h1> | ||
| <p> | ||
| <strong>Invoice #:</strong> INV-2023-001<br> | ||
| <strong>Date:</strong> October 25, 2023<br> | ||
| <strong>Due Date:</strong> November 10, 2023 | ||
| </p> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="details-container"> | ||
| <div class="bill-to"> | ||
| <h3>Bill To:</h3> | ||
| <p><strong>John Doe</strong><br> | ||
| 789 Client St.<br> | ||
| Los Angeles, CA 90001<br> | ||
| john.doe@example.com</p> | ||
| </div> | ||
| </div> | ||
|
|
||
| <table> | ||
| <thead> | ||
| <tr> | ||
| <th>Description</th> | ||
| <th>Quantity</th> | ||
| <th>Unit Price</th> | ||
| <th>Total</th> | ||
| </tr> | ||
| </thead> | ||
| <tbody> | ||
| <tr> | ||
| <td>Web Design Services</td> | ||
| <td>1</td> | ||
| <td>$1,200.00</td> | ||
| <td>$1,200.00</td> | ||
| </tr> | ||
| <tr> | ||
| <td>SEO Optimization</td> | ||
| <td>5 hours</td> | ||
| <td>$80.00</td> | ||
| <td>$400.00</td> | ||
| </tr> | ||
| <tr> | ||
| <td>Domain Hosting (1 Year)</td> | ||
| <td>1</td> | ||
| <td>$150.00</td> | ||
| <td>$150.00</td> | ||
| </tr> | ||
| </tbody> | ||
| </table> | ||
|
|
||
| <div class="total-section"> | ||
| <table> | ||
| <tr> | ||
| <td>Subtotal:</td> | ||
| <td>$1,750.00</td> | ||
| </tr> | ||
| <tr> | ||
| <td>Tax (10%):</td> | ||
| <td>$175.00</td> | ||
| </tr> | ||
| <tr class="total-row"> | ||
| <td>Total:</td> | ||
| <td>$1,925.00</td> | ||
| </tr> | ||
| </table> | ||
| </div> | ||
|
|
||
| <div class="footer"> | ||
| <p>Thank you for your business!</p> | ||
| <p>Payment should be made via bank transfer or PayPal within 15 days.</p> | ||
| </div> | ||
| </div> | ||
|
|
||
| </body> | ||
| </html> |
Binary file added
BIN
+88.8 KB
...-copilot/how-to-guides/how-to-improve-ocr-recognition/ocr-reference-example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+95.5 KB
...o-copilot/how-to-guides/how-to-improve-ocr-recognition/ocr-reference-marked.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+142 KB
...lot/how-to-guides/how-to-improve-ocr-recognition/ocr-skills-and-tools-model.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+49 KB
docs/assets/user-guide/etendo-copilot/bundles/overview/copilot-feedback.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-40.6 KB
(80%)
docs/assets/user-guide/etendo-copilot/setup/assistant-window.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-42.1 KB
(74%)
docs/assets/user-guide/etendo-copilot/setup/knowledge-tab.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.55 KB
(100%)
docs/assets/user-guide/etendo-copilot/setup/skill-tool-window.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-24.5 KB
(84%)
docs/assets/user-guide/etendo-copilot/setup/skills-and-tools-tab.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.