parent
7e7bd03970
commit
656001f2b2
@ -1,24 +1,25 @@
|
|||||||
<component name="ProjectRunConfigurationManager">
|
<component name="ProjectRunConfigurationManager">
|
||||||
<configuration default="false" name="Run Plugin" type="GradleRunConfiguration" factoryName="Gradle">
|
<configuration default="false" name="dev" type="GradleRunConfiguration" factoryName="Gradle">
|
||||||
<log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea.log"/>
|
<log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea.log" />
|
||||||
<ExternalSystemSettings>
|
<ExternalSystemSettings>
|
||||||
<option name="executionName"/>
|
<option name="executionName" />
|
||||||
<option name="externalProjectPath" value="$PROJECT_DIR$"/>
|
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||||
<option name="externalSystemIdString" value="GRADLE"/>
|
<option name="externalSystemIdString" value="GRADLE" />
|
||||||
<option name="scriptParameters" value=""/>
|
<option name="scriptParameters" value="--debug" />
|
||||||
<option name="taskDescriptions">
|
<option name="taskDescriptions">
|
||||||
<list/>
|
<list />
|
||||||
</option>
|
</option>
|
||||||
<option name="taskNames">
|
<option name="taskNames">
|
||||||
<list>
|
<list>
|
||||||
<option value="runIde"/>
|
<option value="runIde" />
|
||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
<option name="vmOptions" value=""/>
|
<option name="vmOptions" value="" />
|
||||||
</ExternalSystemSettings>
|
</ExternalSystemSettings>
|
||||||
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
|
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
|
||||||
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
|
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
|
||||||
<DebugAllEnabled>false</DebugAllEnabled>
|
<DebugAllEnabled>false</DebugAllEnabled>
|
||||||
<method v="2"/>
|
<RunAsTest>false</RunAsTest>
|
||||||
</configuration>
|
<method v="2" />
|
||||||
</component>
|
</configuration>
|
||||||
|
</component>
|
@ -1,7 +0,0 @@
|
|||||||
package com.plexworlds.l3.llm
|
|
||||||
|
|
||||||
enum class LLMs(val llm: LLM ) {
|
|
||||||
|
|
||||||
OLLAMA(Ollama),
|
|
||||||
DUMMY(Dummy)
|
|
||||||
}
|
|
@ -1,7 +1,7 @@
|
|||||||
package com.plexworlds.l3.llm
|
package com.plexworlds.l3.llm.provider
|
||||||
|
|
||||||
|
|
||||||
object Dummy : LLM {
|
object Dummy : Provider {
|
||||||
|
|
||||||
private var model = ""
|
private var model = ""
|
||||||
|
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.plexworlds.l3.llm.provider
|
||||||
|
|
||||||
|
enum class Providers(val provider: Provider) {
|
||||||
|
|
||||||
|
OLLAMA(Ollama),
|
||||||
|
DUMMY(Dummy)
|
||||||
|
}
|
Loading…
Reference in new issue