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
import { models } from '../models' | |
import { LLMChain, SerializedLLMChain } from "langchain/chains"; | |
import { PromptTemplate } from "langchain/prompts"; | |
import {AgentExecutor, BaseSingleActionAgent, StoppingMethod } from "langchain/agents"; | |
import { CallbackManagerForChainRun, Callbacks } from "langchain/callbacks"; | |
import { BaseMultiActionAgent } from "langchain/dist/agents/agent"; | |
import { BaseMemory } from "langchain/memory"; | |
import { AgentAction, AgentFinish, ChainValues } from "langchain/schema"; | |
import { Tool } from "langchain/tools"; |
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
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
</head> | |
<body> | |
<div> | |
<div class='widget_wrapper bike'> | |
<div class='head'> | |
<strong>Your Bike Savings</strong> |
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
/* | |
Have the function SimpleSymbols(str) take the str parameter being passed and determine if | |
it is an acceptable sequence by either returning the string true or false. The str parameter | |
will be composed of + and = symbols with several letters between them (ie. ++d+===+c++==a) | |
and for the string to be true each letter must be surrounded by a + symbol. So the string to the | |
left would be false. The string will not be empty and will have at least one letter. | |
*/ | |
var correctString = '+d+=3=+s+'; | |
var incorrectString = '+d=+3=2+' |