Initial Icon Tests

This commit is contained in:
abhishekshankr
2023-12-13 12:45:00 -05:00
parent 6a17cdc315
commit d214ddfe5b
9 changed files with 43 additions and 11 deletions
@@ -27,7 +27,7 @@ class LLMChain_Chains implements INode {
this.name = 'llmChain'
this.version = 3.0
this.type = 'LLMChain'
this.icon = 'chain.svg'
this.icon = 'LLM_Chain.svg'
this.category = 'Chains'
this.description = 'Chain to run queries against LLMs'
this.baseClasses = [this.type, ...getBaseClasses(LLMChain)]
@@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.2881 8.40117C14.2881 6.17663 12.4847 4.37326 10.2602 4.37326L8.69626 4.37326C6.47172 4.37327 4.66836 6.17663 4.66835 8.40117C4.66835 9.22805 4.91751 9.99673 5.34484 10.6362M9.62032 7.50607C9.62031 9.73062 11.4237 11.534 13.6482 11.534L14.4295 11.534H15.2109C16.1716 11.534 17.0538 11.1976 17.7461 10.6362C18.6567 9.89775 19.2388 8.76988 19.2388 7.50607C19.2388 5.28153 17.4354 3.47816 15.2109 3.47816" stroke="black" stroke-width="1.5" stroke-linecap="round"/>
<path d="M5 15V20.25H8" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.25 15V20.25H13.25" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.5 20.25V15L17.375 17.25L19.25 15V20.25" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 935 B

@@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.2881 8.40117C14.2881 6.17663 12.4847 4.37326 10.2602 4.37326L8.69626 4.37326C6.47172 4.37327 4.66836 6.17663 4.66835 8.40117C4.66835 9.22805 4.91751 9.99673 5.34484 10.6362M9.62032 7.50607C9.62031 9.73062 11.4237 11.534 13.6482 11.534L14.4295 11.534H15.2109C16.1716 11.534 17.0538 11.1976 17.7461 10.6362C18.6567 9.89775 19.2388 8.76988 19.2388 7.50607C19.2388 5.28153 17.4354 3.47816 15.2109 3.47816" stroke="black" stroke-width="1.5" stroke-linecap="round"/>
<ellipse cx="8.875" cy="17.625" rx="1.875" ry="2.625" stroke="black" stroke-width="1.5"/>
<path d="M10.75 20.25L9.5 19" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 20.25L14.875 15L16.75 20.25" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.75 19H16" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

@@ -21,7 +21,7 @@ class RetrievalQAChain_Chains implements INode {
this.name = 'retrievalQAChain'
this.version = 1.0
this.type = 'RetrievalQAChain'
this.icon = 'chain.svg'
this.icon = 'QA_Chain.svg'
this.category = 'Chains'
this.description = 'QA chain to answer a question based on the retrieved documents'
this.baseClasses = [this.type, ...getBaseClasses(RetrievalQAChain)]