hanoch@raized.ai commited on
Commit ·
b419e4e
1
Parent(s): 0b0950e
initial
Browse files- app.py +7 -0
- crm.pyproj +25 -0
app.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def greet(name):
|
| 4 |
+
return "Hello " + name + "!!"
|
| 5 |
+
|
| 6 |
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 7 |
+
demo.launch()
|
crm.pyproj
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
|
| 3 |
+
<PropertyGroup>
|
| 4 |
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
| 5 |
+
<SchemaVersion>2.0</SchemaVersion>
|
| 6 |
+
<ProjectGuid>{55ae319e-983f-4fbf-9d43-643180abb57b}</ProjectGuid>
|
| 7 |
+
<ProjectHome />
|
| 8 |
+
<StartupFile />
|
| 9 |
+
<SearchPath />
|
| 10 |
+
<WorkingDirectory>.</WorkingDirectory>
|
| 11 |
+
<OutputPath>.</OutputPath>
|
| 12 |
+
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
|
| 13 |
+
<LaunchProvider>Standard Python launcher</LaunchProvider>
|
| 14 |
+
<InterpreterId>Global|PythonCore|3.9</InterpreterId>
|
| 15 |
+
</PropertyGroup>
|
| 16 |
+
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
|
| 17 |
+
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
|
| 18 |
+
<PropertyGroup>
|
| 19 |
+
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
|
| 20 |
+
</PropertyGroup>
|
| 21 |
+
<ItemGroup>
|
| 22 |
+
<InterpreterReference Include="Global|PythonCore|3.9" />
|
| 23 |
+
</ItemGroup>
|
| 24 |
+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
|
| 25 |
+
</Project>
|