@ info: status
0:00
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is a demonstration video showcasing our product Evidentia,
0:04
S… Speaker 1 (EvidentiaSIHFinalDemo)
which is a legal document management system that comes with a suite of security
0:08
S… Speaker 1 (EvidentiaSIHFinalDemo)
features.
0:09
S… Speaker 1 (EvidentiaSIHFinalDemo)
It includes role -based access at the front -end dashboard level secured by Django
0:13
S… Speaker 1 (EvidentiaSIHFinalDemo)
and at the back -end secured by Spring Security and JWT.
0:17
S… Speaker 1 (EvidentiaSIHFinalDemo)
It also has several other features called the Evidentia AI Mind,
0:21
S… Speaker 1 (EvidentiaSIHFinalDemo)
which is another feature I will talk about.
0:22
S… Speaker 1 (EvidentiaSIHFinalDemo)
The main important feature that we are going to talk about here is pre -upload
0:27
S… Speaker 1 (EvidentiaSIHFinalDemo)
tamper detection, which is the most interesting feature of our product.
0:29
S… Speaker 1 (EvidentiaSIHFinalDemo)
It is something that has not been addressed in research papers relating
0:34
S… Speaker 1 (EvidentiaSIHFinalDemo)
to chain of custody and blockchain security,
0:36
S… Speaker 1 (EvidentiaSIHFinalDemo)
which we were able to address with our product.
0:41
S… Speaker 1 (EvidentiaSIHFinalDemo)
So just to quickly get into how our product works,
0:43
S… Speaker 1 (EvidentiaSIHFinalDemo)
we have a Spring Boot service that secures the backend.
0:46
S… Speaker 1 (EvidentiaSIHFinalDemo)
And this is entirely written in Java.
0:47
S… Speaker 1 (EvidentiaSIHFinalDemo)
Spring Boot is a Java backend management framework.
0:50
S… Speaker 1 (EvidentiaSIHFinalDemo)
That is a part of the Spring framework.
0:52
S… Speaker 1 (EvidentiaSIHFinalDemo)
I'm just going to run this quickly.
0:53
S… Speaker 1 (EvidentiaSIHFinalDemo)
And this gives you role -based access through Spring Security.
0:56
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now we have more terminal windows here.
0:58
S… Speaker 1 (EvidentiaSIHFinalDemo)
If you can see, this is the dashboard,
1:00
S… Speaker 1 (EvidentiaSIHFinalDemo)
the Django dashboard window,
1:02
S… Speaker 1 (EvidentiaSIHFinalDemo)
which is responsible for rendering our front end.
1:03
S… Speaker 1 (EvidentiaSIHFinalDemo)
It is also secured with the Django auth.
1:05
S… Speaker 1 (EvidentiaSIHFinalDemo)
And that is why you see credential systems here.
1:07
S… Speaker 1 (EvidentiaSIHFinalDemo)
I'm going to run the front end as well.
1:10
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is a live database that is written in Postgres.
1:13
S… Speaker 1 (EvidentiaSIHFinalDemo)
By the way, all of this runs locally on your local machine.
1:15
S… Speaker 1 (EvidentiaSIHFinalDemo)
You don't have to worry about security because all of this runs on your server and people will have to build
1:20
S… Speaker 1 (EvidentiaSIHFinalDemo)
this on their own servers in order to test it.
1:21
S… Speaker 1 (EvidentiaSIHFinalDemo)
All of this is available on GitHub.
1:23
S… Speaker 1 (EvidentiaSIHFinalDemo)
The entire repository,
1:25
S… Speaker 1 (EvidentiaSIHFinalDemo)
all of the code,
1:25
S… Speaker 1 (EvidentiaSIHFinalDemo)
the entire application is available on GitHub.
1:27
S… Speaker 1 (EvidentiaSIHFinalDemo)
You can host this locally on your own machine with no problems whatsoever.
1:30
S… Speaker 1 (EvidentiaSIHFinalDemo)
It is written in Java and Python 3 and is very,
1:34
S… Speaker 1 (EvidentiaSIHFinalDemo)
very platform -independent,
1:35
S… Speaker 1 (EvidentiaSIHFinalDemo)
so you can ideally run it on any machine highly cost -effectively.
1:38
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now we have a third terminal window here.
1:40
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is to replicate our Ethereum network.
1:42
This is called the Ganache
1:43
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is responsible for actually running the Ethereum
1:47
S… Speaker 1 (EvidentiaSIHFinalDemo)
virtual network where we get duplicate credits.
1:49
S… Speaker 1 (EvidentiaSIHFinalDemo)
And this is responsible for creating blocks on the Ethereum blockchain.
1:52
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now how the tamper detection works is every time a document is uploaded
1:56
S… Speaker 1 (EvidentiaSIHFinalDemo)
onto this dashboard,
1:57
S… Speaker 1 (EvidentiaSIHFinalDemo)
a hash gets created through the post API endpoint from
2:02
S… Speaker 1 (EvidentiaSIHFinalDemo)
our Spring Boot server.
2:02
S… Speaker 1 (EvidentiaSIHFinalDemo)
And then this hash gets recorded onto this Ethereum.
2:06
S… Speaker 1 (EvidentiaSIHFinalDemo)
chain the ethereum virtual chain a block gets created every time a hash is recorded and
2:10
S… Speaker 1 (EvidentiaSIHFinalDemo)
this hash is immutable which means it cannot be changed every time a document is
2:14
S… Speaker 1 (EvidentiaSIHFinalDemo)
created locally and a tamper happens locally that is if somebody
2:19
S… Speaker 1 (EvidentiaSIHFinalDemo)
were to have database level access and if they were to tamper with the
2:23
S… Speaker 1 (EvidentiaSIHFinalDemo)
document the hash of the document changes locally now if the hash changes locally
2:27
S… Speaker 1 (EvidentiaSIHFinalDemo)
it is compared with the anchored hash on the blockchain which like i mentioned will never change now
2:31
S… Speaker 1 (EvidentiaSIHFinalDemo)
if the anchored hash is different from whatever
2:35
S… Speaker 1 (EvidentiaSIHFinalDemo)
local hash is recorded.
2:36
S… Speaker 1 (EvidentiaSIHFinalDemo)
That difference in hash itself will explain to the dashboard that
2:41
S… Speaker 1 (EvidentiaSIHFinalDemo)
the document has been tampered with and the Django endpoint,
2:43
S… Speaker 1 (EvidentiaSIHFinalDemo)
the Django reads from the Spring API,
2:45
S… Speaker 1 (EvidentiaSIHFinalDemo)
REST API endpoint and then displays it accordingly on the dashboard.
2:50
S… Speaker 1 (EvidentiaSIHFinalDemo)
so now that we have the django dashboard running we have the database connected we have the ganache network
2:54
S… Speaker 1 (EvidentiaSIHFinalDemo)
listing on a port we also have a spring boot application running we can refresh this page and
2:58
S… Speaker 1 (EvidentiaSIHFinalDemo)
our dashboard should be working we have a basic accessibility accessibility feature here a
3:02
S… Speaker 1 (EvidentiaSIHFinalDemo)
light mode dark mode selector we can log in as an admin
3:05
S… Speaker 1 (EvidentiaSIHFinalDemo)
Just to show your role -based access.
3:07
S… Speaker 1 (EvidentiaSIHFinalDemo)
So if I were to enter admin credentials,
3:09
S… Speaker 1 (EvidentiaSIHFinalDemo)
I will be logged in as an admin.
3:11
S… Speaker 1 (EvidentiaSIHFinalDemo)
So if you can see you have multiple features here.
3:13
S… Speaker 1 (EvidentiaSIHFinalDemo)
You have case registry,
3:14
S… Speaker 1 (EvidentiaSIHFinalDemo)
which allows you to see all the cases that have been uploaded.
3:17
S… Speaker 1 (EvidentiaSIHFinalDemo)
We also have a list of documents to see all the documents that have been uploaded in
3:21
S… Speaker 1 (EvidentiaSIHFinalDemo)
the past.
3:22
S… Speaker 1 (EvidentiaSIHFinalDemo)
We have a home section where you
3:26
S… Speaker 1 (EvidentiaSIHFinalDemo)
can access every little tab and every tile independently from the home.
3:30
S… Speaker 1 (EvidentiaSIHFinalDemo)
We have an audit log,
3:31
S… Speaker 1 (EvidentiaSIHFinalDemo)
which is actually the part
3:33
S… Speaker 1 (EvidentiaSIHFinalDemo)
of this tamper detection feature that we've explained and this tamper detection feature
3:38
S… Speaker 1 (EvidentiaSIHFinalDemo)
works on the audit log it uses data from the audit log so you can see we have pre
3:42
S… Speaker 1 (EvidentiaSIHFinalDemo)
-upload tamper detected this are these are just some operations that happened in the past and
3:46
S… Speaker 1 (EvidentiaSIHFinalDemo)
if i were to go go to documents you can see we have multiple documents already mentioned here
3:50
S… Speaker 1 (EvidentiaSIHFinalDemo)
and all our actions are available here now the verify action is what helps you detect a
3:54
S… Speaker 1 (EvidentiaSIHFinalDemo)
tamper so i'm going to upload a document um let's just call
3:58
S… Speaker 1 (EvidentiaSIHFinalDemo)
it
4:01
S… Speaker 1 (EvidentiaSIHFinalDemo)
New test 2 .txt.
4:03
S… Speaker 1 (EvidentiaSIHFinalDemo)
So this is a document that I'm going to upload.
4:04
S… Speaker 1 (EvidentiaSIHFinalDemo)
I'm going to call this test tamper test case 001.
4:08
S… Speaker 1 (EvidentiaSIHFinalDemo)
Let's just call this a chart sheet.
4:11
S… Speaker 1 (EvidentiaSIHFinalDemo)
Just for an example,
4:13
S… Speaker 1 (EvidentiaSIHFinalDemo)
you can upload actual legal documents can be uploaded,
4:15
S… Speaker 1 (EvidentiaSIHFinalDemo)
but just to see how our dashboard behaves.
4:17
S… Speaker 1 (EvidentiaSIHFinalDemo)
It's going to upload a sample document here.
4:19
S… Speaker 1 (EvidentiaSIHFinalDemo)
Click on upload.
4:20
S… Speaker 1 (EvidentiaSIHFinalDemo)
If you can see the upload is successful.
4:21
S… Speaker 1 (EvidentiaSIHFinalDemo)
And now let's go to the document here.
4:24
S… Speaker 1 (EvidentiaSIHFinalDemo)
If you can see, this is the document I just uploaded.
4:26
S… Speaker 1 (EvidentiaSIHFinalDemo)
And now I'm going to click verify on this document.
4:29
S… Speaker 1 (EvidentiaSIHFinalDemo)
If you can see,
4:29
S… Speaker 1 (EvidentiaSIHFinalDemo)
it says, file matches the hash record in on -chain at upload time,
4:32
S… Speaker 1 (EvidentiaSIHFinalDemo)
which means this is successfully an untampered document,
4:36
S… Speaker 1 (EvidentiaSIHFinalDemo)
and it has been properly uploaded on the dashboard.
4:38
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now, if I were to tamper with this document,
4:40
S… Speaker 1 (EvidentiaSIHFinalDemo)
let's say I'm somebody with database -level access,
4:42
S… Speaker 1 (EvidentiaSIHFinalDemo)
and let's say I go to our
4:46
S… Speaker 1 (EvidentiaSIHFinalDemo)
repository here,
4:48
S… Speaker 1 (EvidentiaSIHFinalDemo)
and inside Evidentia,
4:50
S… Speaker 1 (EvidentiaSIHFinalDemo)
I open the Spring Boot service,
4:52
S… Speaker 1 (EvidentiaSIHFinalDemo)
and let's say I have access to uploaded documents,
4:54
S… Speaker 1 (EvidentiaSIHFinalDemo)
which is a folder within the backend.
4:56
S… Speaker 1 (EvidentiaSIHFinalDemo)
So if I have database -level access,
4:58
S… Speaker 1 (EvidentiaSIHFinalDemo)
and if I were to tamper with this document,
5:00
S… Speaker 1 (EvidentiaSIHFinalDemo)
i'm just going to do a quick ls command to show you all the documents here and this is the new document that we uploaded
5:05
S… Speaker 1 (EvidentiaSIHFinalDemo)
so i am going to tamper with this document i'm going to do echo just an echo command
5:09
S… Speaker 1 (EvidentiaSIHFinalDemo)
to append a string to the document this is ideally how a tamper works if somebody were to
5:13
S… Speaker 1 (EvidentiaSIHFinalDemo)
edit the document illegally with the database level access or tamper is recorded
5:17
S… Speaker 1 (EvidentiaSIHFinalDemo)
so i'm going to tamper with this document and
5:21
S… Speaker 1 (EvidentiaSIHFinalDemo)
it should just be 258
5:25
S… Speaker 1 (EvidentiaSIHFinalDemo)
so this is our document and i'm going to tamper with this now
5:29
S… Speaker 1 (EvidentiaSIHFinalDemo)
the document has been tampered with let's go back to our dashboard
5:32
S… Speaker 1 (EvidentiaSIHFinalDemo)
and if you were to click on verify
5:34
S… Speaker 1 (EvidentiaSIHFinalDemo)
If you can see,
5:35
S… Speaker 1 (EvidentiaSIHFinalDemo)
file did not match the on -chain record,
5:38
S… Speaker 1 (EvidentiaSIHFinalDemo)
which means, like I mentioned,
5:39
S… Speaker 1 (EvidentiaSIHFinalDemo)
the hash is different when tampered with,
5:41
S… Speaker 1 (EvidentiaSIHFinalDemo)
and a different hash got recorded,
5:42
S… Speaker 1 (EvidentiaSIHFinalDemo)
which is compared with the anchored hash.
5:44
S… Speaker 1 (EvidentiaSIHFinalDemo)
And because it is different,
5:46
S… Speaker 1 (EvidentiaSIHFinalDemo)
we know that the tamper has been detected.
5:47
S… Speaker 1 (EvidentiaSIHFinalDemo)
The second part of the statement,
5:49
S… Speaker 1 (EvidentiaSIHFinalDemo)
restored to its last good known version,
5:51
S… Speaker 1 (EvidentiaSIHFinalDemo)
is ideally just a feature that is an example of tamper repair.
5:55
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now, if a tamper happens,
5:56
S… Speaker 1 (EvidentiaSIHFinalDemo)
we just don't leave it like that,
5:58
S… Speaker 1 (EvidentiaSIHFinalDemo)
right? We actually have to fix the tamper.
6:00
S… Speaker 1 (EvidentiaSIHFinalDemo)
So it uses the audit log and a document control or a document version control.
6:04
S… Speaker 1 (EvidentiaSIHFinalDemo)
to store a separate copy of that original document in a remote database.
6:07
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now,
6:08
S… Speaker 1 (EvidentiaSIHFinalDemo)
if a tamper were to happen,
6:10
S… Speaker 1 (EvidentiaSIHFinalDemo)
then it just takes the untampered version and then restores the original document
6:14
S… Speaker 1 (EvidentiaSIHFinalDemo)
with the untampered version.
6:16
S… Speaker 1 (EvidentiaSIHFinalDemo)
So it takes the tampered version and then replaces it with the original untampered version that was
6:20
S… Speaker 1 (EvidentiaSIHFinalDemo)
stored at the time of upload.
6:21
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is version control and this we've used to actually fix tampers.
6:25
S… Speaker 1 (EvidentiaSIHFinalDemo)
So tamper repair is also happening and tamper detection is also happening.
6:29
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now,
6:30
S… Speaker 1 (EvidentiaSIHFinalDemo)
if you were to click on verify again,
6:32
S… Speaker 1 (EvidentiaSIHFinalDemo)
You can see it says file matches the hash recorded on -chain because we fixed the document
6:36
S… Speaker 1 (EvidentiaSIHFinalDemo)
with the original document and the document has been repaired.
6:39
S… Speaker 1 (EvidentiaSIHFinalDemo)
So now that the hash matches,
6:40
S… Speaker 1 (EvidentiaSIHFinalDemo)
there is actually no error and we know that the document is now untampered
6:45
S… Speaker 1 (EvidentiaSIHFinalDemo)
and is back to its original state.
6:46
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now this is post -tamper detection,
6:49
S… Speaker 1 (EvidentiaSIHFinalDemo)
but what if somebody were to tamper with the document even before they upload it to the dashboard?
6:53
S… Speaker 1 (EvidentiaSIHFinalDemo)
So this is something that we've addressed,
6:55
S… Speaker 1 (EvidentiaSIHFinalDemo)
which was a research gap that was found in multiple research papers pertaining to blockchain
6:59
S… Speaker 1 (EvidentiaSIHFinalDemo)
and chain of custody.
7:00
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now how this works is I have a watcher
7:05
S… Speaker 1 (EvidentiaSIHFinalDemo)
script, if you can see.
7:05
S… Speaker 1 (EvidentiaSIHFinalDemo)
There is a watcher script here called watch .py.
7:08
S… Speaker 1 (EvidentiaSIHFinalDemo)
This script is responsible for watching the entire operating system.
7:12
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now if somebody were to create a file at the very
7:16
S… Speaker 1 (EvidentiaSIHFinalDemo)
time of creation,
7:17
S… Speaker 1 (EvidentiaSIHFinalDemo)
even before uploading it to the dashboard,
7:19
S… Speaker 1 (EvidentiaSIHFinalDemo)
the hash of that file gets recorded.
7:21
S… Speaker 1 (EvidentiaSIHFinalDemo)
So if you can see it says watching this particular repository,
7:23
S… Speaker 1 (EvidentiaSIHFinalDemo)
which means it is constantly now watching that repository.
7:26
S… Speaker 1 (EvidentiaSIHFinalDemo)
And if I were to go to that repository here,
7:30
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now we are inside this particular repository and I'm going to create a quick little test file just
7:34
S… Speaker 1 (EvidentiaSIHFinalDemo)
to show you new recording
7:40
S… Speaker 1 (EvidentiaSIHFinalDemo)
and This is a text
7:44
S… Speaker 1 (EvidentiaSIHFinalDemo)
file best file that I've created if you can see there is a hash that just got recorded here So
7:48
S… Speaker 1 (EvidentiaSIHFinalDemo)
it says a hash has been recorded for this particular document And if you can see the hash is
7:52
S… Speaker 1 (EvidentiaSIHFinalDemo)
now the same that is because we haven't tampered with the document But let's say I tampered with this
7:56
S… Speaker 1 (EvidentiaSIHFinalDemo)
document mind you this is happening all before we've actually uploaded it to
8:00
S… Speaker 1 (EvidentiaSIHFinalDemo)
the dashboard So I'm going to tamper with this document and
8:07
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now, if you can see the hash has actually changed.
8:10
S… Speaker 1 (EvidentiaSIHFinalDemo)
So after I did a tamper string to the document,
8:12
S… Speaker 1 (EvidentiaSIHFinalDemo)
the hash has changed.
8:14
S… Speaker 1 (EvidentiaSIHFinalDemo)
So even before I have uploaded it to the dashboard,
8:16
S… Speaker 1 (EvidentiaSIHFinalDemo)
the watcher script knows that the hash has been changed.
8:20
S… Speaker 1 (EvidentiaSIHFinalDemo)
It sends the different hash to the rest API endpoint and the hash gets
8:24
S… Speaker 1 (EvidentiaSIHFinalDemo)
compared.
8:24
S… Speaker 1 (EvidentiaSIHFinalDemo)
So now if we were to upload the document to the dashboard,
8:27
S… Speaker 1 (EvidentiaSIHFinalDemo)
I am uploading this after I've actually tampered with the document.
8:31
S… Speaker 1 (EvidentiaSIHFinalDemo)
So I'm going to call this new recording.
8:33
S… Speaker 1 (EvidentiaSIHFinalDemo)
So this is our document here and
8:37
S… Speaker 1 (EvidentiaSIHFinalDemo)
I'm going to upload this.
8:42
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now, if you can see,
8:43
S… Speaker 1 (EvidentiaSIHFinalDemo)
it says uploaded,
8:44
S… Speaker 1 (EvidentiaSIHFinalDemo)
but with a concern,
8:44
S… Speaker 1 (EvidentiaSIHFinalDemo)
the file's content differs from the version first locally observed at this time.
8:47
S… Speaker 1 (EvidentiaSIHFinalDemo)
It may have been modified after creation,
8:49
S… Speaker 1 (EvidentiaSIHFinalDemo)
but before upload,
8:50
S… Speaker 1 (EvidentiaSIHFinalDemo)
which means even before we've uploaded this,
8:52
S… Speaker 1 (EvidentiaSIHFinalDemo)
it knows that the document has been tampered with because the hash strings
8:56
S… Speaker 1 (EvidentiaSIHFinalDemo)
have changed.
8:57
S… Speaker 1 (EvidentiaSIHFinalDemo)
And this is all because of our watcher script,
9:00
S… Speaker 1 (EvidentiaSIHFinalDemo)
which entirely watches the entire operating system here.
9:02
S… Speaker 1 (EvidentiaSIHFinalDemo)
And every time a file gets created at the time of creation,
9:05
S… Speaker 1 (EvidentiaSIHFinalDemo)
it can detect a tamper and then report the tamper to our dashboard.
9:09
S… Speaker 1 (EvidentiaSIHFinalDemo)
So that is how pre -tamper detection works.
9:11
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is a research gap that we've addressed successfully in our prototype.
9:15
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now if we were to go back to documents,
9:17
S… Speaker 1 (EvidentiaSIHFinalDemo)
you can see we have an additional feature here called Evidentia Mind.
9:20
S… Speaker 1 (EvidentiaSIHFinalDemo)
Now Evidentia Mind is basically a document analysis feature which runs an LLM
9:25
S… Speaker 1 (EvidentiaSIHFinalDemo)
under the hood.
9:25
S… Speaker 1 (EvidentiaSIHFinalDemo)
You can use a local hugging face model or you can also use your
9:29
S… Speaker 1 (EvidentiaSIHFinalDemo)
own model through an API endpoint.
9:32
S… Speaker 1 (EvidentiaSIHFinalDemo)
Anything that works for you.
9:33
S… Speaker 1 (EvidentiaSIHFinalDemo)
If you're worried about security,
9:34
S… Speaker 1 (EvidentiaSIHFinalDemo)
run it locally.
9:35
S… Speaker 1 (EvidentiaSIHFinalDemo)
Ideally what this does is it analyzes the entire document,
9:38
S… Speaker 1 (EvidentiaSIHFinalDemo)
gives you a full summary of what the document is about.
9:41
S… Speaker 1 (EvidentiaSIHFinalDemo)
It gives you key dates of all the parties involved.
9:44
S… Speaker 1 (EvidentiaSIHFinalDemo)
So this is a sample of fire that I had uploaded previously and evidentia is clearly read
9:48
S… Speaker 1 (EvidentiaSIHFinalDemo)
through all the key dates.
9:49
S… Speaker 1 (EvidentiaSIHFinalDemo)
So the dates that crimes may have happened,
9:52
S… Speaker 1 (EvidentiaSIHFinalDemo)
the dates where a certain event would have happened,
9:54
S… Speaker 1 (EvidentiaSIHFinalDemo)
the exact time all of it is recorded,
9:56
S… Speaker 1 (EvidentiaSIHFinalDemo)
the key parties.
9:57
S… Speaker 1 (EvidentiaSIHFinalDemo)
So if let's say you're reading through a document and you may have missed something with the naked eye,
10:01
S… Speaker 1 (EvidentiaSIHFinalDemo)
but evidentia of mine can actually read through the entire document and give
10:05
S… Speaker 1 (EvidentiaSIHFinalDemo)
you clear details of everything.
10:07
S… Speaker 1 (EvidentiaSIHFinalDemo)
Those are the names involved,
10:08
S… Speaker 1 (EvidentiaSIHFinalDemo)
the key parties involved,
10:09
S… Speaker 1 (EvidentiaSIHFinalDemo)
what they may have done,
10:10
S… Speaker 1 (EvidentiaSIHFinalDemo)
the context from the document.
10:11
S… Speaker 1 (EvidentiaSIHFinalDemo)
It has a verification against the actual source as well.
10:14
S… Speaker 1 (EvidentiaSIHFinalDemo)
So the LLM is actually never wrong about what has happened and it's never going to hallucinate
10:18
S… Speaker 1 (EvidentiaSIHFinalDemo)
because it uses your actual source and has a near 99 to 100 % accuracy
10:23
S… Speaker 1 (EvidentiaSIHFinalDemo)
of whatever you've uploaded.
10:24
S… Speaker 1 (EvidentiaSIHFinalDemo)
So it reaches through your document and then reads through all of it,
10:28
S… Speaker 1 (EvidentiaSIHFinalDemo)
gives you details related to fine print.
10:30
S… Speaker 1 (EvidentiaSIHFinalDemo)
So let's say you have a legal fine print that you may have missed with the naked eye.
10:33
S… Speaker 1 (EvidentiaSIHFinalDemo)
So there is an asterisk.
10:35
S… Speaker 1 (EvidentiaSIHFinalDemo)
and a small string of text in the document that you may have missed,
10:38
S… Speaker 1 (EvidentiaSIHFinalDemo)
fine print, then this can actually read fine print for you and then give you the
10:43
S… Speaker 1 (EvidentiaSIHFinalDemo)
meaning of what it is,
10:44
S… Speaker 1 (EvidentiaSIHFinalDemo)
why it matters,
10:45
S… Speaker 1 (EvidentiaSIHFinalDemo)
why it is related to this particular FIR that you have uploaded,
10:47
S… Speaker 1 (EvidentiaSIHFinalDemo)
etc.
10:48
S… Speaker 1 (EvidentiaSIHFinalDemo)
So all of this is available through EvidentiaMind.
10:51
S… Speaker 1 (EvidentiaSIHFinalDemo)
It is an excellent feature to top it off alongside all the security features,
10:54
S… Speaker 1 (EvidentiaSIHFinalDemo)
pre -upload and post -upload tamper detection that we have.
10:58
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is a feature that anybody can use using their own API key or their own local model
11:02
S… Speaker 1 (EvidentiaSIHFinalDemo)
if they're worried about security.
11:03
S… Speaker 1 (EvidentiaSIHFinalDemo)
And these are all the features that Evidentia offers.
11:06
S… Speaker 1 (EvidentiaSIHFinalDemo)
It is a full -fledged document management system with role -based access.
11:09
S… Speaker 1 (EvidentiaSIHFinalDemo)
You can log in as an officer as well.
11:10
S… Speaker 1 (EvidentiaSIHFinalDemo)
Officer 1.
11:12
S… Speaker 1 (EvidentiaSIHFinalDemo)
And if I were to log in
11:16
S… Speaker 1 (EvidentiaSIHFinalDemo)
as an officer.
11:17
S… Speaker 1 (EvidentiaSIHFinalDemo)
it is going to restrict content,
11:19
S… Speaker 1 (EvidentiaSIHFinalDemo)
and it is not going to show me all of the content that is available,
11:22
S… Speaker 1 (EvidentiaSIHFinalDemo)
if you can see.
11:23
S… Speaker 1 (EvidentiaSIHFinalDemo)
So this is how role -based access works.
11:24
S… Speaker 1 (EvidentiaSIHFinalDemo)
Officer has different roles.
11:25
S… Speaker 1 (EvidentiaSIHFinalDemo)
Admin is a global role,
11:27
S… Speaker 1 (EvidentiaSIHFinalDemo)
and anybody, as an admin,
11:28
S… Speaker 1 (EvidentiaSIHFinalDemo)
you can access all of the documents,
11:31
S… Speaker 1 (EvidentiaSIHFinalDemo)
the audit log,
11:31
S… Speaker 1 (EvidentiaSIHFinalDemo)
the actual documents that have been uploaded,
11:33
S… Speaker 1 (EvidentiaSIHFinalDemo)
et cetera.
11:34
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is role -based access,
11:35
S… Speaker 1 (EvidentiaSIHFinalDemo)
and this is evidentia.
11:37
S… Speaker 1 (EvidentiaSIHFinalDemo)
This is a full demonstration of how the product works,
11:39
S… Speaker 1 (EvidentiaSIHFinalDemo)
and it is currently available on GitHub.
11:41
S… Speaker 1 (EvidentiaSIHFinalDemo)
You can run this on any machine,
11:43
S… Speaker 1 (EvidentiaSIHFinalDemo)
so it is completely platform -independent.
11:45
S… Speaker 1 (EvidentiaSIHFinalDemo)
Thank you.

@ info Politica IA

❤️ Amatz STT.ai? Ditz-lo als vòstres amics!
Resumit
@ action: button
Resumit...
Demandar a l'IA sus aquesta transcripcion
Demandatz quicòm sus aquesta transcripcion - l'IA trobarà las seccions pertinentas e respondrà.