mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
20 lines
549 B
Python
20 lines
549 B
Python
import gradio as gr
|
|
from difflib import Differ
|
|
|
|
def diff_texts(text1, text2):
|
|
d = Differ()
|
|
return [
|
|
(token[2:], token[0] if token[0] != " " else None) for token in d.compare(text1, text2)
|
|
]
|
|
|
|
iface = gr.Interface(
|
|
diff_texts,
|
|
[
|
|
gr.inputs.Textbox(
|
|
lines=3, default="The quick brown fox jumped over the lazy dogs."),
|
|
gr.inputs.Textbox(
|
|
lines=3, default="The fast brown fox jumps over lazy dogs."),
|
|
],
|
|
gr.outputs.HighlightedText())
|
|
if __name__ == "__main__":
|
|
iface.launch() |