質問編集履歴
4
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Python インポート
|
1
|
+
Python インポートしたい
|
test
CHANGED
File without changes
|
3
書式変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
### 該当のソースコード
|
26
26
|
|
27
|
-
Python
|
27
|
+
```Python
|
28
28
|
|
29
29
|
from .unmo import Unmo
|
30
30
|
|
@@ -62,6 +62,10 @@
|
|
62
62
|
|
63
63
|
main()
|
64
64
|
|
65
|
+
|
66
|
+
|
67
|
+
```
|
68
|
+
|
65
69
|
### 試したこと
|
66
70
|
|
67
71
|
|
2
書式変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -23,6 +23,8 @@
|
|
23
23
|
|
24
24
|
|
25
25
|
### 該当のソースコード
|
26
|
+
|
27
|
+
Python
|
26
28
|
|
27
29
|
from .unmo import Unmo
|
28
30
|
|
1
ソースコードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,41 @@
|
|
24
24
|
|
25
25
|
### 該当のソースコード
|
26
26
|
|
27
|
+
from .unmo import Unmo
|
27
28
|
|
29
|
+
|
30
|
+
|
31
|
+
def build_prompt(unmo):
|
32
|
+
|
33
|
+
return "{name}:{responder}> ".format(name=unmo.name, responder=unmo.responder)
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
def main():
|
38
|
+
|
39
|
+
print("Unmo System prototype : proto")
|
40
|
+
|
41
|
+
proto = Unmo("proto")
|
42
|
+
|
43
|
+
while True:
|
44
|
+
|
45
|
+
text = input("> ")
|
46
|
+
|
47
|
+
if not text:
|
48
|
+
|
49
|
+
break
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
response = proto.dialogue(text)
|
54
|
+
|
55
|
+
print("{prompt}{response}".format(prompt=build_prompt(proto), response=response))
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
if __name__=="__main__":
|
60
|
+
|
61
|
+
main()
|
28
62
|
|
29
63
|
### 試したこと
|
30
64
|
|